Hello All,
I have a unique system in which I a need to control 7 stepper motors:
2 motors controlling X axis (one master and the other a slave)
2 motors controlling Z axis (one master and the second an inverse slave)
1 Y axis
1 X-axis rotation (A)
1 Y-axis rotation (B)
Thus X1 X2 Y1 Z1 Z2 A1 B1
where X2=X1 and Z2 = -Z1
Currently I have 7 Lexium Mdrive motors (expensive as hell) being commanded for motion via a Java application sending serial commands over TCP/IP to each motor. Besides having to do all of the grunt work of getting somewhat coordinated motion via the Java app, the basic functionality works. I wanted to improve the system both for performance as well as price. I have a KFLOP and a single KSTEP (for now). I want to mimic the same setup that I have by sending commands to the KFLOP via serial and have a dedicated motion control setup. For instance:
From the Java App if I send a command with it's arguments such as:
MoveXYZAB(100 200 400 300 440)
I'd like KFLOP to take over and execute that command.
Essentially, I want to do exactly the same thing as the Console within Kmotion.
Is there an example program that I can be directed to?
Thank you in advance!